home *** CD-ROM | disk | FTP | other *** search
/ 3D Games - Real-time Rend…ng & Software Technology / 3D Games - Real-time Rendering & Software Technology.iso / flysdk / util / flyPlugin / flypluginAw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-29  |  1.3 KB  |  35 lines

  1. #if !defined(AFX_FLYPLUGINAW_H__40D36E27_7D66_11D2_9263_000021799871__INCLUDED_)
  2. #define AFX_FLYPLUGINAW_H__40D36E27_7D66_11D2_9263_000021799871__INCLUDED_
  3.  
  4. // flypluginaw.h : header file
  5. //
  6.  
  7. class CDialogChooser;
  8.  
  9. // All function calls made by mfcapwz.dll to this custom AppWizard (except for
  10. //  GetCustomAppWizClass-- see flyplugin.cpp) are through this class.  You may
  11. //  choose to override more of the CCustomAppWiz virtual functions here to
  12. //  further specialize the behavior of this custom AppWizard.
  13. class CFlypluginAppWiz : public CCustomAppWiz
  14. {
  15. public:
  16.     virtual CAppWizStepDlg* Next(CAppWizStepDlg* pDlg);
  17.     virtual CAppWizStepDlg* Back(CAppWizStepDlg* pDlg);
  18.         
  19.     virtual void InitCustomAppWiz();
  20.     virtual void ExitCustomAppWiz();
  21.     virtual void CustomizeProject(IBuildProject* pProject);
  22.  
  23.     CDialogChooser* m_pChooser;
  24. };
  25.  
  26. // This declares the one instance of the CFlypluginAppWiz class.  You can access
  27. //  m_Dictionary and any other public members of this class through the
  28. //  global Flypluginaw.  (Its definition is in flypluginaw.cpp.)
  29. extern CFlypluginAppWiz Flypluginaw;
  30.  
  31. //{{AFX_INSERT_LOCATION}}
  32. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  33.  
  34. #endif // !defined(AFX_FLYPLUGINAW_H__40D36E27_7D66_11D2_9263_000021799871__INCLUDED_)
  35.